From: Chong Yidong Date: Thu, 13 Jan 2011 04:30:23 +0000 (-0500) Subject: * font-lock.el (font-lock-verbose): Default to nil. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~5216 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=69931f8d0dee9ee5a2a0e845df104a724ae62d30;p=emacs.git * font-lock.el (font-lock-verbose): Default to nil. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 88994679419..a1b7a4e6c32 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-01-13 Chong Yidong + + * font-lock.el (font-lock-verbose): Default to nil. + 2011-01-13 Chong Yidong * simple.el (sendmail-user-agent-compose): Move to sendmail.el. diff --git a/lisp/font-lock.el b/lisp/font-lock.el index fe873297dc2..b10c3d8b9ee 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -276,13 +276,14 @@ decoration for buffers in C++ mode, and level 1 decoration otherwise." (integer :tag "level" 1))))) :group 'font-lock) -(defcustom font-lock-verbose 0 +(defcustom font-lock-verbose nil "If non-nil, means show status messages for buffer fontification. If a number, only buffers greater than this size have fontification messages." :type '(choice (const :tag "never" nil) (other :tag "always" t) (integer :tag "size")) - :group 'font-lock) + :group 'font-lock + :version "24.1") ;; Originally these variable values were face names such as `bold' etc.